.biz-table {
    width: 100%;
    border-collapse: collapse; /*선 안겹치게*/
    table-layout: fixed;
}
.biz-table th, .biz-table td {
    /*border: 1px solid #ddd;*/
    padding: 15px 10px;
    text-align: center;
    vertical-align: middle;
}
.biz-table th {
    background-color: #f8f9fa;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #dee2e6;
}
/* 데이터 행 스타일 */
.biz-table tbody tr {
    background-color: #fff;
}

.biz-table tbody tr:hover {
    background-color: #f5f5f5;
}
.radio-section{
    display: flex;
    border: 1px solid #c8c8c8;
    border-radius: 5px;
    padding: 5px;
    margin-left: 10px;
    margin-right: 10px;
}

.radio-section label{
    margin-right: 10px;
}


